home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 7_10.lha / 7_10 / 7_10pr2.h < prev    next >
Text File  |  1993-08-08  |  669b  |  15 lines

  1. * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
  2. * The C++ Answer Book */
  3. * Tony Hansen */
  4. * All rights reserved. */
  5. / class process private static variables
  6. / private:
  7.    static process *t_thisprocess;    // this for current process
  8.    static process *t_mainprocess;    // this for main()
  9.    static process *t_runprocesses;    // all runnable processes
  10.    static process *t_waitprocesses;    // all waiting processes
  11.    static process *t_doneprocesses;    // all terminated processes
  12.    static unsigned long t_curtime;    // the pseudo-time's clock
  13.    static char *t_stackbase;        // bottom of the stack
  14.    static void (*t_exit_fct)();    // function called at end
  15.